fe4bdf4b8cf45cc95305613be86b9244d6f75915,src/protocol/http/org/apache/jmeter/protocol/http/control/gui/WebServiceSamplerGui.java,WebServiceSamplerGui,modifyTestElement,#TestElement#,209

Before Change


    public void modifyTestElement(TestElement s)
    {
        WebServiceSampler sampler = (WebServiceSampler) s;
        this.configureTestElement(sampler);
        try
        {
            URL url = new URL(urlField.getText());

After Change


    public void modifyTestElement(TestElement s)
    {
        WebServiceSampler sampler = (WebServiceSampler) s;
        this.configureTestElement(sampler);
        sampler.setDomain(domain.getText());
        if (port.getText() != null && port.getText().length() > 0){
            sampler.setPort(Integer.parseInt(port.getText()));